home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Komputer for Alle 2004 #2
/
K-CD-2-2004.ISO
/
OpenOffice Sv
/
f_0397
/
python-core-2.2.2
/
lib
/
test
/
test_future3.py
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Python Source
|
2003-07-18
|
182 b
|
12 lines
from __future__ import nested_scopes
from __future__ import division
from __future__ import nested_scopes
def f(x):
def g(y):
return y // x
return g
print f(2)(5)